home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Views
/
Canvas Loops
/
ValidCanvasLoop.h
< prev
Wrap
Text File
|
2000-06-23
|
589b
|
34 lines
// ValidCanvasLoop.h
#ifndef ValidCanvasLoop_h
#define ValidCanvasLoop_h
#ifndef CanvasMaintainer_h
#include "CanvasMaintainer.h"
#endif
#ifndef CanvasLoopBase_h
#include "CanvasLoopBase.h"
#endif
class ValidCanvasLoop: private CanvasLoopBase
{
private:
CanvasMaintainer canvasMaintainer;
void AdvanceToValid();
public:
ValidCanvasLoop( const DrawsSpontaneously& );
CanvasLoopBase::Finished;
CanvasLoopBase::Unfinished;
void operator++();
void operator++(int) { operator++(); }
CanvasLoopBase::operator*;
CanvasLoopBase::operator->;
};
#endif